home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
FinderGrok
/
Grok
/
Source
/
Prefix
/
DebugPrefix.pch++
< prev
next >
Wrap
Text File
|
2000-06-23
|
918b
|
26 lines
// ===========================================================================
// DebugPrefix.pch++ ©1999-2000 Metrowerks Inc. All rights reserved.
// ===========================================================================
// Source for precompiled header for PowerPlant headers
//
// This file #includes most header files for the PowerPlant library,
// as well as most of the Toolbox headers used by the PowerPlant library
// with all debugging symbols defined.
// This same file works for PowerPC and 68K. We check the target
// at compile time and specify the appropriate output file name.
#if __POWERPC__
#pragma precompile_target "DebugPrefixHeadersPPC++"
#else
#pragma precompile_target "DebugPrefixHeaders68K++"
#endif
#pragma once on
// Bring in common settings
#include "PrefixCommon.h"
// Bring in PP headers. In this case, also activate debugging information
#include <PP_DebugHeaders.cp>